summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-09-17 23:32:47 +0200
committerTao Bao <tbao@google.com>2018-09-17 23:37:27 +0200
commita5bbcb9596bef4f8c449573dd287a26be9439cbd (patch)
tree0b8ed0d96b48be0b53e2c6ae150b95d3f9f0f7cb
parentMerge "Allow switch to fastbootd when userdata wipe is required" (diff)
downloadandroid_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.tar
android_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.tar.gz
android_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.tar.bz2
android_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.tar.lz
android_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.tar.xz
android_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.tar.zst
android_bootable_recovery-a5bbcb9596bef4f8c449573dd287a26be9439cbd.zip
-rw-r--r--recovery.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 6248cf70f..7cc344bce 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1196,6 +1196,9 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri
status = INSTALL_ERROR;
}
} else if (should_prompt_and_wipe_data) {
+ // Trigger the logging to capture the cause, even if user chooses to not wipe data.
+ modified_flash = true;
+
ui->ShowText(true);
ui->SetBackground(RecoveryUI::ERROR);
status = prompt_and_wipe_data(device);